home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb-4.5 / dist / include / aout / host.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-01  |  577 b   |  23 lines

  1. /* Parameters about the a.out format, based on the host system on which
  2.    the program is compiled.  */
  3.  
  4. /* Address of data segment in memory after it is loaded.
  5.    It is up to you to define SEGMENT_SIZE
  6.    on machines not listed here.  */
  7. #ifndef SEGMENT_SIZE
  8. #if defined(hp300) || defined(pyr)
  9. #define SEGMENT_SIZE page_size
  10. #endif
  11. #ifdef    sony
  12. #define    SEGMENT_SIZE    0x1000
  13. #endif    /* Sony.  */
  14. #ifdef is68k
  15. #define SEGMENT_SIZE 0x20000
  16. #endif
  17. #if defined(m68k) && defined(PORTAR)
  18. #define PAGE_SIZE 0x400
  19. #define SEGMENT_SIZE PAGE_SIZE
  20. #endif
  21. #endif /*!defined(SEGMENT_SIZE)*/
  22.  
  23.